home *** CD-ROM | disk | FTP | other *** search
- #include <time.h>
-
- #include "DeskLib:WimpSWIs.h"
-
- #include "Shell.Shell.h"
- #include "Shell.ForcRedraw.h"
-
-
- void Shell_ForceRectRedrawAll( Shell_rectblock *r)
- { window_redrawblock block;
- r->last_update = clock();
- block.window = r->window;
- block.rect = (r->plot_icon) ? r->icon.workarearect : r->rect;
- Wimp_ForceRedraw( &block); /* The actual redraw will be done when the Wimp sends */
- /* event_REDRAW on the next Shell/Event_Poll. */
- return;
- }
-
-